take space separated int input in python

33

take space separated int input in python -

inp = list(map(int,input().split()))

Comments

Submit
0 Comments